home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / TTools / TToolsPalette / TBinderList.subproj / TConnector.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  642 b   |  32 lines

  1. /* TConnector.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9.  
  10. #import <appkit/appkit.h>
  11. #import <apps/InterfaceBuilder.h>
  12.  
  13. @interface TConnector:Object <IBConnectors>
  14. {
  15.     id    binder;
  16.     id    source;    // The real source of the connection
  17. }
  18.  
  19. - setBinder:anObject andSource:anotherObject;
  20. - binder;
  21.  
  22. - source;
  23. - destination;
  24. - establishConnection;
  25. - free;
  26. - nibInstantiate;
  27. - renewObject:old to:new;
  28. - read:(NXTypedStream *)stream;
  29. - write:(NXTypedStream *)stream;
  30.  
  31. @end
  32.